10/19/2021

Project Description

This project will demonstrate the plotly package’s practice and demonstrate with the datasets built within in R for description.

In this case, I have selected the air quality data (removing the NA values) to evaluate the comparison by months for wind level and Ozone level.

Data Cleaning & Arrangement for Air Quality

# Remove NA items for the data
air_clean <- na.omit(airquality)

# Convert the Month as factors to classify the setup
air_clean$Month <- as.factor(air_clean$Month)

Use Box Plot to demonstrate the Ozone level by Month

## [1] "2021-10-19 14:40:13"

Use Box Plot to demonstrate the wind level by Month

## [1] "Tue Oct 19 2:40:14 PM 2021"